/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
}

.logo-text {
    margin-left: 10px;
}

.logo-text h1 {
    font-size: 22px;
    color: #d4af37;
    font-weight: 700;
}

.logo-text p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #d4af37;
}

.mobile-menu {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ----------------------------------- G translate -------------------------------------------------- */

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#google_element {
    position: fixed;
    top: 45%;
    right: -120px; /* Initially hidden, only part visible */
    transform: translateY(-50%);
    z-index: 1000;
    transition: right 0.3s ease-in-out;
}

#google_element:hover {
    right: 0; /* Slide out fully on hover */
}

/* Style the Google Translate widget */
.goog-te-combo {
    padding: 8px 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
    min-width: 150px;
}

.goog-te-gadget {
    font-family: Arial, sans-serif !important;
}

.goog-te-gadget-simple {
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px;
}

/* --------------------------------------------------------------------------------------------------- */

/* Floating Whatsapp and Email icons */
.floating-icons {
    position: fixed;
    top: 60%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Specific icon colors */
.floating-icons a.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-icons a.email {
    background: linear-gradient(135deg, #0072c6, #004c8c);
}

/* Hover effects */
.floating-icons a:hover {
    transform: scale(1.15) translateX(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25), 
                0 0 20px rgba(255, 255, 255, 0.1);
    filter: brightness(1.1);
}

/* Icon rotation on hover */
.floating-icons a i {
    transition: transform 0.3s ease;
}

.floating-icons a:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Glow effect on hover */
.floating-icons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-icons a:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Tooltip */
.floating-icons a::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.floating-icons a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Page load entrance animation */
@keyframes slideInBounce {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-icons a {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInBounce 0.6s ease-out forwards;
}

.floating-icons a:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-icons a:nth-child(2) {
    animation-delay: 0.2s;
}

/* Click effect */
.floating-icons a:active {
    transform: scale(1.05) translateX(-5px);
    transition: all 0.1s ease;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .floating-icons {
        right: 15px;
    }
    
    .floating-icons a:hover {
        transform: scale(1.1) translateX(-5px);
    }
}

/* --------------------------------------------------------------------------------------------------- */

/* Page Banner */
.page-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/Images/Bg/about\ 2.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li:after {
    content: '/';
    position: absolute;
    right: -15px;
    color: #d4af37;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 8px;
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding-left: 50px;
}

.about-content h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Mission Vision */
.mission-vision {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.mv-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mv-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: justify;
}

.mv-box i {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 20px;
}

.mv-box h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.mv-box p {
    color: #666;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #d4af37;
}

.footer-col p, .footer-col a {
    color: #bbb;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #fff;
    background-color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #d4af37;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-container {
        padding: 15px;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .about-container {
        flex-direction: column;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 36px;
    }

    .breadcrumb {
        flex-direction: column;
        align-items: center;
    }

    .breadcrumb li {
        margin: 5px 0;
    }

    .breadcrumb li:after {
        display: none;
    }
}